home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / listbrowser_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-30  |  1.2 KB  |  49 lines

  1. #ifndef CLIB_LISTBROWSER_H
  2. #define CLIB_LISTBROWSER_H
  3. /*
  4. **    $VER: listbrowser_protos.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1987-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifndef INTUITION_CLASSES_H
  18. #include <intuition/classes.h>
  19. #endif
  20.  
  21. #ifndef UTILITY_TAGITEM_H
  22. #include <utility/tagitem.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. Class * LISTBROWSER_GetClass(VOID);
  30. struct Node * AllocListBrowserNode(UWORD, Tag, ...);
  31. struct Node * AllocListBrowserNodeA(UWORD, struct TagItem *);
  32. VOID FreeListBrowserNode(struct Node *);
  33. VOID FreeListBrowserList(struct List *);
  34. VOID SetListBrowserNodeAttrs(struct Node *, Tag, ...);
  35. VOID SetListBrowserNodeAttrsA(struct Node *, struct TagItem *);
  36. VOID GetListBrowserNodeAttrs(struct Node *, Tag, ...);
  37. VOID GetListBrowserNodeAttrsA(struct Node *, struct TagItem *);
  38. VOID ListBrowserSelectAll(struct List *);
  39. VOID ShowListBrowserNodeChildren(struct Node *, WORD);
  40. VOID HideListBrowserNodeChildren(struct Node *);
  41. VOID ShowAllListBrowserChildren(struct List *);
  42. VOID HideAllListBrowserChildren(struct List *);
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48. #endif /* CLIB_LISTBROWSER_PROTOS_H */
  49.